home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209s.zip / octave-2.09 / libs / kpathsea / cnf.h < prev    next >
C/C++ Source or Header  |  1995-06-25  |  1KB  |  32 lines

  1. /* cnf.h: runtime config files.
  2.  
  3. Copyright (C) 1994 Karl Berry.
  4.  
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9.  
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. GNU General Public License for more details.
  14.  
  15. You should have received a copy of the GNU General Public License
  16. along with this program; if not, write to the Free Software
  17. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.  */
  18.  
  19. #ifndef KPATHSEA_CNF_H
  20. #define KPATHSEA_CNF_H
  21.  
  22. #include <kpathsea/c-proto.h>
  23. #include <kpathsea/types.h>
  24.  
  25. /* Return the value in the last-read cnf file for VAR, or NULL if none.
  26.    On the first call, also read all the cnf files in the path (and
  27.    initialize the path) named the `program' member of the
  28.    `kpse_cnf_format' element of `kpse_format_info'.  */
  29. extern string kpse_cnf_get P1H(const_string var);
  30.  
  31. #endif /* not KPATHSEA_CNF_H */
  32.